Activity Lifecycle1
2
3
4
5
6
7
8
9
10
11
12
13
14
15public class Activity extends ApplicationContext {
protected void onCreate(Bundle savedInstanceState);
protected void onStart();
protected void onRestart();
protected void onResume();
protected void onPause();
protected void onStop();
protected void onDestroy();
}
other override1
2
3
4
5
6
7
8
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
if (hasFocus) {
LanSongUtil.hideBottomUIMenu(this);
}
}